const weather = "sunny";

function getWeather(weather: string): string {
    return weather;
}
getWeather(weather);
